405de871e75956e3d949796b8cff58fb3653c7cc,src/org/joml/Matrix4x3f.java,Matrix4x3f,set3x3,#Matrix4x3f#,715

Before Change


     * @return this
     */
    public Matrix4x3f set3x3(Matrix4x3f mat) {
        MemUtil.INSTANCE.copy3x3(mat, this);
        properties &= mat.properties;
        return this;
    }

After Change


     * @return this
     */
    public Matrix4x3f set3x3(Matrix4x3fc mat) {
        if (mat instanceof Matrix4x3f) {
            MemUtil.INSTANCE.copy3x3((Matrix4x3f) mat, this);
        } else {
            set3x3Matrix4x3fc(mat);
        }